Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632713 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame

app.js cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame/app.js
127 Views
0 Comments
//controls
const hatcheck = document.querySelector("#hat");
const glassescheck = document.querySelector("#eyeglasses");
const tiecheck = document.querySelector("#tie");
//accessories
const hat = document.querySelector(".hat");
const glasses = document.querySelector(".glasses");
const tie = document.querySelector(".tie");
style.css cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame/style.css
114 Views
0 Comments
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
index.html cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame/index.html
305 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cat Game</title>
<link rel="stylesheet" href="style.css" />
readme.md cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame/readme.md
145 Views
0 Comments
![catgame](https://user-images.githubusercontent.com/84850243/167242208-43306166-6050-4ed2-8979-58091e5e97c6.png)